home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
MEMSZ312.ZIP
/
SOURCE.ZIP
/
PROCESS.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-14
|
423 b
|
19 lines
// Class PROCESS: Encapsulates the startup/shutdown logic for a OS/2-PM process.
#define INCL_WIN
#include <os2.h>
class Process
{
private:
EXCEPTIONREGISTRATIONRECORD ExceptionRecord ;
HAB Anchor ;
HMQ Queue ;
public:
Process ( LONG QueueSize = 0 ) ;
~Process ( ) ;
inline HAB QueryAnchor () { return ( Anchor ) ; }
inline HMQ QueryQueue () { return ( Queue ) ; }
} ;